relationship in laravel

113

Event::with(["owner", "participants" => function($q) use($someId){
    $q->where('participants.IdUser', '=', 1);
    //$q->where('some other field', $someId);
}])
use Illuminate\Database\Eloquent\Builder;

// Retrieve posts with at least one comment containing words like code%...
$posts = Post::whereHas('comments', function (Builder $query) {
    $query->where('content', 'like', 'code%');
})->get();

// Retrieve posts with at least ten comments containing words like code%...
$posts = Post::whereHas('comments', function (Builder $query) {
    $query->where('content', 'like', 'code%');
}, '>=', 10)->get();
$movies = Movie::whereHas('director', function($q) {
    $q->where('name', 'great');
})->get();
$roles = App\User::find(1)->roles()->orderBy('name')->get();
$user->posts()->where('active', 1)->get();

Comments

Submit
0 Comments